.cookie-banner{
  position:fixed;
  bottom:20px;
  left:20px;
  right:20px;
  background:rgba(15,15,15,0.95);
  color:#fff;
  padding:20px;
  border-radius:15px;
  display:flex;
  justify-content:center;
  z-index:9999;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  backdrop-filter:blur(10px);
}

.cookie-content{
  max-width:900px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.cookie-text h3{
  margin-bottom:5px;
}

.cookie-text p{
  font-size:0.85rem;
  opacity:0.8;
  max-width:500px;
}

.cookie-buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.cookie-buttons button,
.cookie-buttons a{
  padding:10px 15px;
  border-radius:25px;
  border:none;
  cursor:pointer;
  text-decoration:none;
  font-size:0.85rem;
}

/* botones */
.btn-accept{
  background:#22c55e;
  color:#000;
  font-weight:bold;
}

.btn-reject{
  background:#ef4444;
  color:#fff;
}

.btn-info{
  background:#333;
  color:#fff;
}